<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/Chem_Master.dwt" codeOutsideHTMLIsLocked="false" -->

<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<!-- InstanceBeginEditable name="doctitle" -->
<title>The Institute of Chemistry | The Hebrew University of Jerusalem</title>
<!-- InstanceEndEditable -->
<!-- InstanceBeginEditable name="head" -->
<!-- InstanceEndEditable -->
<link href="default.css" rel="stylesheet" type="text/css" />
<!--script language="javascript" src="scripts/default.js"></script>-->




<style type="text/css">

/*Example CSS for the two demo scrollers*/

#pscroller1{
        padding: 13px 11px 12px 12px; 
        font-family:"Meta","MetaMedium-Roman","Arial"; 
        font-size: 150%;
        line-height: 100%;
        color: #333333;
        background-color: #eaf2fe;
        border-color: #bccee7;
        border-style: solid;
        border-width: 3px;
        text-align: left;
        width: 197px;
        height: 180px;
}

#pscroller2{
width: 350px;
height: 20px;
border: 1px solid black;
padding: 3px;
}

#pscroller2 a{
text-decoration: none;
}

.someclass{ //class to apply to your scroller(s) if desired
}

</style>

<script type="text/javascript">

/*Example message arrays for the two demo scrollers*/

var pausecontent=new Array()
pausecontent[0]='<b><font size=1>David Avnir was elected member of the Academia Europaea (formerly The European Academy of Sciences, Humanities and Arts).</font></b>'
pausecontent[1]='<b><font size=1>Itamar Willner was elected a member of the German National Academy of Sciences Leopoldina.</font></b>'


</script>

<script type="text/javascript">

/***********************************************
* Pausing up-down scroller- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/

function pausescroller(content, divId, divClass, delay){
this.content=content //message array content
this.tickerid=divId //ID of ticker div to display information
this.delay=delay //Delay between msg change, in miliseconds.
this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over scroller (and pause it if it is)
this.hiddendivpointer=1 //index of message array for hidden div
document.write('<div id="'+divId+'" class="'+divClass+'" style="position: relative; overflow: hidden"><div class="innerDiv" style="position: absolute; width: 100%" id="'+divId+'1">'+content[0]+'</div><div class="innerDiv" style="position: absolute; width: 100%; visibility: hidden" id="'+divId+'2">'+content[1]+'</div></div>')
var scrollerinstance=this
if (window.addEventListener) //run onload in DOM2 browsers
window.addEventListener("load", function(){scrollerinstance.initialize()}, false)
else if (window.attachEvent) //run onload in IE5.5+
window.attachEvent("onload", function(){scrollerinstance.initialize()})
else if (document.getElementById) //if legacy DOM browsers, just start scroller after 0.5 sec
setTimeout(function(){scrollerinstance.initialize()}, 500)
}

// -------------------------------------------------------------------
// initialize()- Initialize scroller method.
// -Get div objects, set initial positions, start up down animation
// -------------------------------------------------------------------

pausescroller.prototype.initialize=function(){
this.tickerdiv=document.getElementById(this.tickerid)
this.visiblediv=document.getElementById(this.tickerid+"1")
this.hiddendiv=document.getElementById(this.tickerid+"2")
this.visibledivtop=parseInt(pausescroller.getCSSpadding(this.tickerdiv))
//set width of inner DIVs to outer DIV's width minus padding (padding assumed to be top padding x 2)
this.visiblediv.style.width=this.hiddendiv.style.width=this.tickerdiv.offsetWidth-(this.visibledivtop*2)+"px"
this.getinline(this.visiblediv, this.hiddendiv)
this.hiddendiv.style.visibility="visible"
var scrollerinstance=this
document.getElementById(this.tickerid).onmouseover=function(){scrollerinstance.mouseoverBol=1}
document.getElementById(this.tickerid).onmouseout=function(){scrollerinstance.mouseoverBol=0}
if (window.attachEvent) //Clean up loose references in IE
window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null})
setTimeout(function(){scrollerinstance.animateup()}, this.delay)
}


// -------------------------------------------------------------------
// animateup()- Move the two inner divs of the scroller up and in sync
// -------------------------------------------------------------------

pausescroller.prototype.animateup=function(){
var scrollerinstance=this
if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){
this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px"
this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px"
setTimeout(function(){scrollerinstance.animateup()}, 50)
}
else{
this.getinline(this.hiddendiv, this.visiblediv)
this.swapdivs()
setTimeout(function(){scrollerinstance.setmessage()}, this.delay)
}
}

// -------------------------------------------------------------------
// swapdivs()- Swap between which is the visible and which is the hidden div
// -------------------------------------------------------------------

pausescroller.prototype.swapdivs=function(){
var tempcontainer=this.visiblediv
this.visiblediv=this.hiddendiv
this.hiddendiv=tempcontainer
}

pausescroller.prototype.getinline=function(div1, div2){
div1.style.top=this.visibledivtop+"px"
div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px"
}

// -------------------------------------------------------------------
// setmessage()- Populate the hidden div with the next message before it's visible
// -------------------------------------------------------------------

pausescroller.prototype.setmessage=function(){
var scrollerinstance=this
if (this.mouseoverBol==1) //if mouse is currently over scoller, do nothing (pause it)
setTimeout(function(){scrollerinstance.setmessage()}, 100)
else{
var i=this.hiddendivpointer
var ceiling=this.content.length
this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1
this.hiddendiv.innerHTML=this.content[this.hiddendivpointer]
this.animateup()
}
}

pausescroller.getCSSpadding=function(tickerobj){ //get CSS padding value, if any
if (tickerobj.currentStyle)
return tickerobj.currentStyle["paddingTop"]
else if (window.getComputedStyle) //if DOM2
return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top")
else
return 0
}

</script>




</head>
<body>

<table width="827" border="0" cellspacing="0" cellpadding="0">

  <tr>

    <td width="4" align="left" valign="top" height="92">&nbsp;</td>

    <td width="822" align="left" valign="top" height="92">

	<img border="0" src="images/eng_02.gif" width="815" height="98"></td>

    <td width="1" align="left" valign="top" nowrap="nowrap" height="92"><script language="javascript">

<!--

showHeaderImages();
// --></script></td>

  </tr>

  <tr>

    <td colspan="3" align="left" valign="top">

	<img src="images/head_banner_btm.gif" alt="----------------" width="827" height="3" /></td>

  </tr>

</table>

<table width="825" border="0" cellspacing="0" cellpadding="0">

  <tr>

    <td width="170" align="left" valign="top" class="columnLeft"><!-- InstanceBeginEditable name="Left Area" -->

	<div style="height:66px;">&nbsp;</div>

	<div><img src="images/lnav_hdiv.gif" alt="--------------" width="165" height="2" /></div>

	<div class="lnavPriSelPage">&gt;Home</div>

	<div><img src="images/lnav_hdiv.gif" alt="--------------" width="165" height="2" /></div>

	<div class="lnavPriOff"><a href="inst.html" class="lnavPriOffLink">The Institute</a></div>

	<div><img src="images/lnav_hdiv.gif" alt="--------------" width="165" height="2" /></div>

<div class="lnavPriOff"><a href="school.html" class="lnavPriOffLink">School of Chemistry</a></div>

	<div><img src="images/lnav_hdiv.gif" alt="--------------" width="165" height="2" /></div>

	<div class="lnavPriOff"><a href="events/events.pdf" class="lnavPriOffLink">Events</a></div>

	<div><img src="images/lnav_hdiv.gif" alt="--------------" width="165" height="2" /></div>

	<div class="lnavPriOff"><a href="faculty.html" class="lnavPriOffLink">Faculty</a></div>

	<div><img src="images/lnav_hdiv.gif" alt="--------------" width="165" height="2" /></div>

	<div class="lnavPriOff"><a href="res_adm.html" class="lnavPriOffLink">Researchers and Administrative Staff</a></div>
       
	 <div><img src="images/lnav_hdiv.gif" alt="--------------" width="165" height="2" /></div>
	 
	<div class="lnavPriOff"><a href="links.html" class="lnavPriOffLink">Links</a></div>

	<div><img src="images/lnav_hdiv.gif" alt="--------------" width="165" height="2" /></div>
	
	<div class="lnavPriOff"><a href="contact.html" class="lnavPriOffLink">Contact Us</a></div>

	<div><img src="images/lnav_hdiv.gif" alt="--------------" width="165" height="2" /></div>

	<!-- InstanceEndEditable --></td>

    <td width="1" align="left" valign="top" class="columnDiv"><img src="images/global_spacer.gif" alt="|" width="1" height="1" /></td>

    <td width="421" align="left" valign="top" class="columnRight"><!-- InstanceBeginEditable name="Body Area" -->

      <table width="415" border="0" cellspacing="0" cellpadding="0">

        <tr>

          <td width="405" align="left" valign="top" style="padding:0px 10px 0px 0px;">

			<img border="0" src="images/headline.gif" width="383" height="64">

		  <div>
			<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="384" height="288">
				<param name="movie" value="images/chemistry.swf">
				<param name="quality" value="High">
				<embed src="images/chemistry.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj1" width="384" height="288"></object>
			<table width="60%" border="0" cellspacing="0" cellpadding="0">
				<form name="keywords" action="/cgi-bin/chemistry/search_faculty.pl" method="Post">
					<input type=hidden name=L value=E>
			<table width="94%" border="0" cellpadding="5">
				<tr align="left" valign="top">
					<td align="left">
					<input type=text name=word value="" size=35 class="box4">
					</td>
				</tr>
				<tr align="left">
					<td nowrap colspan=2>
					<input type=radio name=word_all value=1 checked><font size=1>All words</font>&nbsp;&nbsp; 
					<input type=radio name=word_all value=2><font size=1> One At least</font>&nbsp;&nbsp;<input type=radio name=word_all value=3><font size=1>Exact 
					phrase</font></td>
				</tr>
				<tr align="left" valign="top">
					<td align="left">
					<input type="submit" value="Faculty Search"  class="btn">
					<input type=hidden name=keywords value=1></td>
				</tr>

			</table>



			</div>



            </table></div>
		  
		<div style="padding:0px 0px 11px 0px;"><img src="images/home_body_hdiv.gif" alt="----------------" width="383" height="2" /></div>		  </td>

          <td width="234" align="left" valign="top" style="padding: 0px 1px 0px 0px;"><div>

			<img border="0" src="images/highlights.gif" width="225" height="34"></div>



<script type="text/javascript">

//new pausescroller(name_of_message_array, CSS_ID, CSS_classname, pause_in_miliseconds)

new pausescroller(pausecontent, "pscroller1", "someclass", 6000)
document.write("<br />")
</script>



          <div class="homeBoxContact" style="width: 197px; height: 250px">

			<img border="0" src="images/Institute.gif" width="184" height="32"><br />

          	The Institute of Chemistry<br />

            The Hebrew University of<br />

            Jerusalem<br />

            Edmond J. Safra Campus&nbsp;&nbsp;&nbsp;

            Givat Ram, Jerusalem<br />

            91904, Israel<p>Tel) 972-2-6585287 <br />

          	Fax) 972-2-5660425</p>

			<p>

			<a target="_blank" href="http://www.huji.ac.il/huji/maps/givatramCampus.htm">Campus Maps</a></div></td>

        </tr>

      </table> <br>

    <!-- InstanceEndEditable --></td>

  </tr>

</table>

<table width="820" border="0" cellspacing="0" cellpadding="0">

  <tr>

 <td nowrap="nowrap" class="footerNav"><a href="../../index-2.html">Home</a> |<a href="inst.html">The Institute</a> | <a href="school.html">School of Chemistry</a> | <a href="eve
nts.pdf">Events</a> | <a href="chemF.html">Faculty</a> | <a href="res_adm.html">Staff</a></td>

  </tr>

  <tr>

    <td nowrap="nowrap" class="footerCopyright"><a href="contact.html">Contact Us</a> |</a>

	<a href="mailto:webmaster@chem.ch.huji.ac.il">Webmaster</a> | &copy; 2009

	The Hebrew University. All Rights Reserved.<br />

<br />

	last UPDATED 20-JAN-2013<br />

&nbsp;</td>

  </tr>

</table>
</body>

</html>
